home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
emerald
/
emrldsys.lha
/
Utils
/
makedep
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-09-11
|
343b
|
20 lines
# Buildfile for makedep
OBJS = makedep.o gen.o getincl.o print.o list.o
EMDIR = /scratch/eric/emerald/
CFLAGS = -O
.c.o:
@cc $(CFLAGS) -c $<
makedep: $(OBJS)
@cc -o makedep $(OBJS)
clean:
@rm -f *BAK *CKP *.o makedep
install: makedep
@echo "Installing the dependency program in ${EMDIR}/bin"
@strip makedep
@mv makedep ${EMDIR}/bin